home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The PC-SIG Library 10
/
The PC-Sig Library - Shareware for the IBM PC and Compatibles (PC-SIG)(Tenth Edition Disks 1-2804)(1991).iso
/
PC_SIGCD
/
20
/
9
/
DISK2092.ZIP
/
RBBS-LIT.ZIP
/
LIT
/
BASCAPS.LIT
< prev
next >
Wrap
Text File
|
1990-01-13
|
812b
|
14 lines
*[BASCAPS.LIT]****************************************************************
* Description: Froces use of BASIC for upper/lower conversion. *
* RBBS-PC Level: CPC17.2B *
* Module Affected: RBBSSUB3.BAS *
* Selection Option: ASMCAPS = OFF *
* Additional files: ASMCAPS.LIT *
******************************************************************************
58050 SUB AllCaps (ConvertField$) STATIC
FOR WasZ = 1 TO LEN(ConvertField$)
IF MID$(ConvertField$,WasZ,1) > "@" THEN _
MID$(ConvertField$,WasZ,1) = CHR$(ASC(MID$(ConvertField$,WasZ,1)) AND 223)
NEXT
END SUB